home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / graphics / mpega_library / developer / demo / smakefile < prev   
Makefile  |  1999-06-15  |  269b  |  18 lines

  1. #
  2. # Makefile for MPEGA_demo
  3. # Stéphane TAVENARD 25/10/1997
  4. #
  5.  
  6. .c.o:
  7.       SC NOLINK $*.c
  8.  
  9. TARGET = MPEGA_demo
  10.  
  11. all: $(TARGET)
  12.  
  13. MPEGDEC_demo.o: MPEGA_demo.c
  14.  
  15. $(TARGET) : MPEGA_demo.o
  16.    sc link MPEGA_demo.o to $(TARGET) NOICONS LIB LIB:scm.lib LIB:sc.lib LIB:amiga.lib
  17.  
  18.